home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / oleo-1_4.lha / oleo-1.4 / format.h < prev    next >
C/C++ Source or Header  |  1993-03-12  |  1KB  |  42 lines

  1. #ifndef FORMATH
  2. #define FORMATH
  3.  
  4. /*    Copyright (C) 1993 Free Software Foundation, Inc.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this software; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19. /*  t. lord    Thu Jan 21 15:35:45 1993    */
  20.  
  21.  
  22.  
  23. #include "global.h"
  24. #include "cell.h"
  25.  
  26. #ifdef __STDC__
  27. extern char * fmt_to_str (int fmt);
  28. extern int str_to_fmt (char *ptr);
  29. extern char * jst_to_str (int jst);
  30. extern int chr_to_jst (int chr);
  31.  
  32. #else
  33. extern char * fmt_to_str ();
  34. extern int str_to_fmt ();
  35. extern char * jst_to_str ();
  36. extern int chr_to_jst ();
  37.  
  38. #endif
  39.  
  40. #endif /* FORMATH */
  41.  
  42.